aboutsummaryrefslogtreecommitdiffstats
path: root/pages/category/[id].vue
diff options
context:
space:
mode:
Diffstat (limited to 'pages/category/[id].vue')
-rw-r--r--pages/category/[id].vue7
1 files changed, 2 insertions, 5 deletions
diff --git a/pages/category/[id].vue b/pages/category/[id].vue
index 66ad26c..59993e7 100644
--- a/pages/category/[id].vue
+++ b/pages/category/[id].vue
@@ -1,9 +1,6 @@
<script setup lang="ts">
import { useSessionStore } from '@/stores/session';
import { stripColorCodes } from '@/lib/util';
-import CategoryOptionsPanel from '@/components/Editor/Category/CategoryOptionsPanel.vue';
-import CategoryChildrenOptionsPanel from '@/components/Editor/Category/CategoryChildrenOptionsPanel.vue';
-import Button from '@/components/Control/Button.vue';
definePageMeta({
layout: 'editor'
@@ -30,8 +27,8 @@ const categoryName = sessionStore.getCategoryById(categoryId)?.display.name;
</div>
<div id="options-container">
- <CategoryOptionsPanel :categoryId="categoryId" />
- <CategoryChildrenOptionsPanel :categoryId="categoryId" />
+ <EditorCategoryOptionsPanel :categoryId="categoryId" />
+ <EditorCategoryChildrenOptionsPanel :categoryId="categoryId" />
</div>
</template>